Welcome![Sign In][Sign Up]
Location:
Search - Alt Del

Search list

[Hook apiFuck_CAD_Unit

Description: 一个很发方便的NT下屏蔽Ctrl+Alt+Del的单元(Fuck_CAD_Unit.pas) 带Demo 主要是方便新手 只要调用两个函数就能屏蔽/还原 不用在研究别人一大堆代码 并且打包好了D-made a very convenient shield NT Ctrl-Alt-Del Module (Fuck_CAD_U nit.pas) Band Demo is mostly newcomers as long as two functions can be called shielding / no reduction in research others code lot of good packaging and D
Platform: | Size: 368381 | Author: hke | Hits:

[OS programCutCtrlAltDel

Description: 可以屏蔽Ctrl + Alt + Del-can shield Ctrl-Alt-Del
Platform: | Size: 209826 | Author: xyf | Hits:

[ExploitVB_SFn

Description: 这是一个通过VB屏蔽Ctrl+Alt+Del键的便程。当某些情况下,人们不希望操作者中止或干预程序执行,可尝试一下。-This is a VB shielding Ctrl-Alt-Del key is the way. When certain circumstances, people do not want to stay or operator intervention procedures, and try to make.
Platform: | Size: 15170 | Author: wl | Hits:

[ExploitProcess3

Description: 用vc编写的进程查看程序,有些按下Ctrl+Alt+Del也看不到的黑客程序在本程序下可以一览无余-vc prepared with the process View procedures, Some press Ctrl-Alt-Del also see the hacker program in the procedure can be readily perceived
Platform: | Size: 82804 | Author: 丑小鸭 | Hits:

[Hook apiDisableKeys111

Description: 全局钩子并不能能够屏蔽Ctrl+alt+del,这个程序可以完全屏蔽,直接调用dll就可以了。-overall hook and not to shield Ctrl alt del, the procedures can shield, dll called directly on it.
Platform: | Size: 2537287 | Author: 韩瑞 | Hits:

[Windows DevelopDisabled_Ctrl_Alt_Del

Description: 屏蔽Ctrl+ALT+DEL的最好的程序-Ctrl ALT DEL shielding the best procedure
Platform: | Size: 547633 | Author: 大可 | Hits:

[Exploitwin2000下屏蔽ctrl+alt+del的新方法

Description: win2000下屏蔽热键的方法!-WIN2000 shielding hotkey under way!
Platform: | Size: 185563 | Author: lj | Hits:

[GUI DevelopVBProg

Description: 本程序实现了设置墙纸、令关闭命令不可用和禁用Ctrl+Alt+Del组合键的功能
Platform: | Size: 6948 | Author: bgl | Hits:

[Hook apihide

Description: Windows XP系统中如何屏蔽 Ctrl+Alt+Del、Alt+Tab以及Ctrl+Esc键序列
Platform: | Size: 99198 | Author: jerry | Hits:

[OS programlockwindows

Description: 本来用键盘驱动程序能完美解决的,可未免也杀鸡用牛刀,场面搞大了点。其实当你登录后,Winlogon创建一个新的桌面并调用Explorer。,而Winlogon则在另一个名为Winlogon的桌面中,也就是说,NT至少有一个桌面,就是你登录前看到的那个,(题外话:所以写个虚拟桌面工具,就难不倒你啦)。而Ctrl+Alt+Del对系统而言,也不过就是个热键罢了,只是它被定位到Winlogon桌面中去了,同样,它也必然有一个窗口负责处理这个热键消息的,因此,解决方案就出来,如果我们可找到这个窗口并子类化它,呵呵,不就...。(使用我提供的ShellCode代码,在我的电脑上有枚举出Winlogon桌面的四个窗口,其中有一个名为SAS window的窗口,其它是什么IME啦,等等,猜都能猜出啦,SAS windows应该就是啦)。因为我们要子类化WinLogon桌面中的窗口,别无选择的我们应该使用远程线程了,本文使用的是将所有代码注入到WinLogon进程中去,而不是远程挂接DLL的方式,这样在你开发程序过程中,无需任何第三方文件了。(这应该是你乐意的)
Platform: | Size: 18335 | Author: jing | Hits:

[ApplicationsVCWin2000Ctrl+Alt+Del

Description: 这是在windows下通过使用vc++来品比三键的的按取,在电脑上可以通过这个程序蓝禁止用户打开资源管理器。
Platform: | Size: 26333 | Author: 谢泽奇 | Hits:

[Hook apikeyhook

Description: 一个利用键盘低级钩子锁屏的实例,禁止了alt+tab,alt+esc,开始菜单,ctl+alt+del等系统热键
Platform: | Size: 227028 | Author: 天一 | Hits:

[Otherwangyue1

Description: 使用方法: 1: 包含C++类CCADMgr头文件,如:#include \"CADMgr.h\" 2: 定义变量如:CCADMgr m_cadMgr 3: 设置Ctrl+Alt+Del消息通知窗口,如:m_cadMgr.SetTargetWnd(m_hWnd) 4: 禁用或启用,如:m_cadMgr.DisableCAD(m_bDisabled) 5: 响应消息: 声明函数:afx_msg void OnHotKey(WPARAM wParam, LPARAM lParam) 消息映射:ON_MESSAGE(WM_HOTKEY, OnHotKey) 函数实现: void CTrapCADDlg::OnHotKey(WPARAM wParam, LPARAM lParam) { WORD wKey = HIWORD(lParam) WORD wModifier = LOWORD(lParam) BOOL bAltDown = ((wModifier & VK_MENU) != 0 ? TRUE : FALSE) BOOL bCtrlDown = ((wModifier & VK_CONTROL) != 0 ? TRUE : FALSE) //按下Ctrl + Alt + Del组合键 if(bCtrlDown && bAltDown && wKey == VK_DELETE) AfxMessageBox(\"对不起, Ctrl+Alt+Delete组合键已经被禁用了!\", MB_OK|MB_IConERROR)
Platform: | Size: 119281 | Author: 王跃 | Hits:

[Otherlock

Description: 屏幕挂机锁程序,屏蔽ctrl+alt+del!本程序是我为网吧写的,具有一定的参考价值!暂无发现BUG!如果你有任何建议或问题请联系我!
Platform: | Size: 106711 | Author: ljasdf | Hits:

[Windows DevelopNoCtrl+Alt+Del(one)

Description: 1.请对 thhotkey.dpr进行编译 thhotkey.exe 2.请对 testdll.dpr 进行编译 生成 testdll.dll 3.运行 thhotkey.exe即可
Platform: | Size: 212115 | Author: yryz | Hits:

[Windows Developdemo

Description: 过R3的隐藏进程屏蔽ctrl+alt+del
Platform: | Size: 42462 | Author: 老李 | Hits:

[Other resourceWBJF

Description: Of the password is: Server: \"1.\" Client: + for the month of the date of the machine. Such as \"2005/08/05\", compared with the number \"85\" Database: \"xzxq\". I made the changes: 1, stations and customer-service once every 30 seconds to exchange information (to ensure continuous line) 2, computer services-an increase of the serial number 3, client-service to send the card serial number and send IP addresses to the service side 4, the desktop client by the embargo, since the definition of the icon to start the process faster (from the window Superman Code) 5, CS-shielding some function keys, but CTRL + ALT + DEL keys can not shield the hope that a revised modify these friends 6, there are some corners of Laws (such as title, etc.). Client desktop icon in the Settings page set up first class to enter FXZWN999 open on to add, delete icon button
Platform: | Size: 1356944 | Author: JACK.CHEN | Hits:

[OS programgina_ctrl_alt_del

Description: gina programming.To disable ctrl+alt+del key.
Platform: | Size: 31004 | Author: alex | Hits:

[OS programHideProc

Description: 利用windows的一个*.dll卸载漏洞,可以实现在win9x,nt,w2k下进程的深度隐藏,按CTRL+ALT+DEL看不到,用终极防线也看不到,
Platform: | Size: 79894 | Author: Alexander | Hits:

[Hook apiSmartDVRLock

Description: 锁定键盘系统热键和CTL+ALT+DEL以及鼠标右键
Platform: | Size: 48027 | Author: wan | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 14 »

CodeBus www.codebus.net